home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / wsc4c10.zip / MODEM_IO.H < prev    next >
Text File  |  1996-08-08  |  880b  |  28 lines

  1. /* modem_io.h */
  2.  
  3. #define SEND_TO  1
  4. #define WAIT_FOR 2
  5. #define QUIET    3
  6. #define HANGUP   4
  7.  
  8. #define MIO_IDLE     0
  9. #define MIO_RUNNING  (-1)
  10.  
  11. #ifdef __cplusplus
  12. extern "C" int FAR PASCAL mioSendTo(int,unsigned long,LPSTR);
  13. extern "C" int FAR PASCAL mioQuiet(int,unsigned long);
  14. extern "C" int FAR PASCAL mioWaitFor(int,unsigned long,int,LPSTR);
  15. extern "C" int FAR PASCAL mioResult(int);
  16. extern "C" int FAR PASCAL mioDriver(int);
  17. extern "C" int FAR PASCAL mioBreak(int);
  18. extern "C" int FAR PASCAL mioDebug(HWND);
  19. #else
  20. extern int FAR PASCAL mioSendTo(int,unsigned long,LPSTR);
  21. extern int FAR PASCAL mioQuiet(int,unsigned long);
  22. extern int FAR PASCAL mioWaitFor(int,unsigned long,int,LPSTR);
  23. extern int FAR PASCAL mioResult(int);
  24. extern int FAR PASCAL mioDriver(int);
  25. extern int FAR PASCAL mioBreak(int);
  26. extern int FAR PASCAL mioDebug(HWND);
  27. #endif
  28.